We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The connection.dsn string occludes the password when connection is made with a dsn but not when a connection is made with a URI:
>>> dbconn=connect ('dbname=dev user=yama password=secret') >>> dbconn.dsn 'dbname=dev user=yama password=xxxxxx' >>> dbconn=connect ('postgres://yama:secret@localhost/dev') >>> dbconn.dsn 'postgres://yama:secret@localhost/dev'
Shouldn't it also be occluded in the URI case?
The text was updated successfully, but these errors were encountered:
I guess so
Sorry, something went wrong.
Added tests to verify the password is obscured
cc047a4
The url test fails: see issue #528
9f160fd
No branches or pull requests
The connection.dsn string occludes the password when connection is made with a dsn but not when a connection is made with a URI:
Shouldn't it also be occluded in the URI case?
The text was updated successfully, but these errors were encountered: